MySQL - Re: ERROR 1030 (HY000): Got error 28 from storage engine

chris (2007-07-02 12:27:50)
4677 views
0 replies
if you see ' Re: ERROR 1030 (HY000): Got error 28 from storage engine ' coming back from MySQL, this almost certainly means your hard disk is 100 % full - you can check this with:
% df -h

and if you are 100% full on the same partition as where your mysql data is located, you will need to drill down and find the sink like this:
% cd /
% du -skh *

That will list the offending directories.. Purge files as required and MySQL should be happy again.

christo
comment